home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-07-07 | 451 b | 20 lines |
- # Beispiel-Makefile für DigiTape Module
- # Letzte Änderung: 1.7.93
-
- OBJECTS = hall.r HALL.D
-
- xyz.x : $(OBJECTS)
- $(RM) xyz.x
-
- # aus RSC-File C-Source File HALL.R erzeugen
- hall.r : hall.rsc
- \dt_modul\rsc_to_c.ttp $*.rsc
-
- # aus DSP56000 Assembler Source File C-Source File
- # HALL.D und Define File HALL.DH erzeugen
- HALL.D : HALL.CLN
- \dt_modul\cln_to_d.ttp $*
- HALL.CLN : HALL.ASM
- \dt_modul\asm56000.ttp -b \dt_modul\example\$*.ASM
-
-